From: Matthias Clasen Date: Thu, 23 Dec 2021 21:59:26 +0000 (-0500) Subject: sizerequest: Remove critical warning for now X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~91^2^2~16 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=de42b5bfae8d74d0de1f66f9095eef5969b4e8b1;p=gtk4.git sizerequest: Remove critical warning for now At last as long as widgets like GtkFlowBox and GtkGrid still trigger this, it is not a great idea to have this warning in a stable release. So remove it for 4.6 --- diff --git a/gtk/gtksizerequest.c b/gtk/gtksizerequest.c index 21ee564182..7c34c7757c 100644 --- a/gtk/gtksizerequest.c +++ b/gtk/gtksizerequest.c @@ -493,11 +493,7 @@ gtk_widget_measure (GtkWidget *widget, int min_opposite_size; gtk_widget_measure (widget, OPPOSITE_ORIENTATION (orientation), -1, &min_opposite_size, NULL, NULL, NULL); if (for_size < min_opposite_size) - { - g_critical ("gtk_widget_measure: assertion 'for_size >= minimum opposite size' failed: %u >= %u", - for_size, min_opposite_size); - for_size = min_opposite_size; - } + for_size = min_opposite_size; } /* This is the main function that checks for a cached size and